Welcome![Sign In][Sign Up]
Location:
Search - assembly compiler

Search list

[ELanguagenasm-0.98

Description: 一个汇编语言编译器源码- A assembly language compiler source code
Platform: | Size: 546816 | Author: 站长 | Hits:

[ELanguagepl0

Description: PL/0语言可以看成PASCAL语言的子集,它的编译程序是一个编译解释执行系统。PL/0的目标程序为假想栈式计算机的汇编语言,与具体计算机无关。 文件说明: PL.htm---PL/0语言基本原理 pl0.h---定义 PL0.cpp---实现 testPl0.cpp---使用方法举例 testPas.txt---一个LP/0语言源程序-PL/0 language may regard as the PASCAL language the subset, its compiler is a translation explanation execution system. The PL/0 target program for the imaginary stack type computer assembly language, has nothing to do with with the concrete computer. Document explanation that, PL.htm---PL/0 language basic principle pl0.h--- defines PL0.cpp--- to realize the testPl0.cpp--- application method to give an example testPas.txt--- a LP/0 language source program
Platform: | Size: 596992 | Author: 许豫飞 | Hits:

[ELanguagewin32 汇编语言编译器源码

Description:
Platform: | Size: 174080 | Author: | Hits:

[ELanguagehc_compiler

Description: 由于时间紧迫及事先准备不足,编译器最后定型时暴露出不少问题及不足之处,主要有以下一些方面:   不支持数组数据类型,这是文法分析器设计时的一个疏漏,由于时间关系,最后只得把扫描器中已做好的相关的数组部分删去。   对于float数据类型的支持,直到语义分析都是正常的,也能生成相应的汇编代码,但由于我们对8086/8088指令系统本身了解不足,这样的汇编代码将只能做到含义上完全忠实于源程序,但不能运行。   对于局部变量的支持,则于时间紧迫,所有的局部变量全被处理成静态变量。使递归函数不能得到正确的结果。    对于函数调用语句,不进行参数匹配检查,如果参数数量不对,也将能通过编译,但运行时将产生非法操作。   对&& !等逻辑操作在最后生成代码时处理比较粗燥,生成的代码在逻辑复杂时将不能保证运行正常。   接下来有一些,不能说是缺陷,但必须说明的问题:   对于main函数,没有参数表,通回类型也必须为void,但如果写上参数表及其他返回类型也能编译通过,生成代码时将简单地忽略,不影响最后的代码的运行。   对于while,for,if语句,其语句体不管是一句还是多句,必须都有{}围起来。这跟C语言中若是一句则可省略{}不同。-Due to the time constraints and lack of preparation in advance, the compiler finalized when exposed numerous problems and shortcomings, mainly in the following aspects : no support for array data type, which is grammar analyzer design of an omission, because of the time, the final could only have scanners do phase customs array deleted. For float data types of support until semantic analysis is normal, and can generate the corresponding assembly code, but because of our 8086/8088 directive to the knowledge of the system itself, this compilation can do to code meaning entirely faithful to the source, but not running. For the support of local variables, in the time constraints, all local variables were all handled in the static variable. So recursive function will not get the right results.
Platform: | Size: 260096 | Author: 周杰 | Hits:

[ELanguageSC 22

Description: The Small C compiler translates a subset of the C language into assembly language. It runs under PC/MS-DOS 2.1 and later. Small C is compatible with the Microsoft and Small Mac assemblers. Small C takes full advantage of the ability of these assemblers to generate relocatable object code, to maintain libraries of relocatable modules, and to link separately compiled program modules. It supports a small memory model with one code and one data/stack segment.
Platform: | Size: 131072 | Author: 张先生 | Hits:

[assembly languagecalculator_nic

Description: 用汇编语言写的32位计算器,代码里注释比较详细。文件为asm,需在dos编译。已通过编译。大二的计算机原理project,三个日夜的辛苦结果~-using assembly language to write the 32 calculators, Lane Notes code in more detail. Asm documents, the need to dos compiler. Through compiler. The sophomore computer science project, three results of the hard work day and night ~
Platform: | Size: 2048 | Author: 胡泽中 | Hits:

[ELanguagecmm

Description: 简单C编译器生成的目标代码是8086的汇编代码(16位),可以在一般的PC上被像MASM之类的汇编编译程序编译,生成可执行文件后,在DOS或Windows控制台下运行。 实现的语言定义如下: 语言类似于tiny语言,不支持过程调用,也就是只有一个main函数,无其他函数和全局变量 基本语句:注释语句(/*…*/),输入语句(int input(void) ),输出语句(void output(int) ),赋值语句。这里的输入输出语句实际上类似于函数调用,可以看作是本语言内部的函数 算术运算符:+、—、*、/ 数据类型:整数.-Simple C compiler generated object code is 8086 assembly code (16), the PC in general were such as MASM compilation compiler compiler to generate executable file, in DOS or Windows console run. The realization of the language are defined as follows: the language is similar to tiny language, do not support the procedure call, that is, there is only one main function, no other function and global variable basic statement: Note statement (/* ...* /), type the statement (int input (void )), the output statement (void output (int)), assignment statements. The input and output statements in fact similar to function calls, can be seen as a function of the language within the Arithmetic Operators: 2B !,-,*,/ data types: integer.
Platform: | Size: 412672 | Author: Tony | Hits:

[SCMzn5

Description: Keil C51标准C编译器为8051微控制器的软件开发提供了C语言环境,同时保留了汇编代码高效、快速的特点。C51已被完全集成到μVision2的集成开发环境中,这个集成开发环境包含编译器、汇编器、实时操作系统、项目管理器和调试器-Keil C51 standard C compiler for 8051 microcontroller software development provides a C language environment, while retaining the assembly code efficient and rapid. C51 has been completely integrated into the μVision2 integrated development environment, this integrated development environment contains the compiler, assembler, real-time operating system, project management and debuggers
Platform: | Size: 3860480 | Author: tian | Hits:

[ELanguageC-Compiler

Description: 小型C语言编译器,VC条件下运行,最后编译为汇编代码-Small C language compiler, VC under the conditions of operation, the final assembly code for the compiler
Platform: | Size: 1184768 | Author: sunhui | Hits:

[ELanguagecompiler

Description: 简单实现C--语言的编译器 ,能够生成汇编代码;再用工具将汇编代码转换为可执行文件,执行该文件得到正确的结果。-Realize a simple C- language compiler can generate assembly code reuse tool assembly code is converted to an executable file, the implementation of the document to obtain accurate results.
Platform: | Size: 406528 | Author: | Hits:

[SCMasem5113

Description: Free 8051 asm compiler for win new host platforms: Win32 and Linux macro processing dramatically improved conditional assembly output in Intel-HEX or OMF-51 format 37 new MCU files documentation in both ASCII and HTML format numberless small extensions and improvements bug fixes For details see the ASEM-51 Release Notes.
Platform: | Size: 613376 | Author: wan mi | Hits:

[assembly languageADC_cv

Description: ADC模数转换实验,51单片机汇编语言编写。编译合格-ADC analog-digital conversion experiments, the preparation of 51 single-chip assembly language. Compiler pass
Platform: | Size: 54272 | Author: winfred | Hits:

[ELanguageprj_tiger

Description: 编译原理大作业---tiger编译器 包括semant,translate,mipsframe,regalloc等所有phase 懂的人自会知道-Compilation Principle big operation--- tiger compiler including semant, translate, mipsframe, regalloc all those who understand phase will know
Platform: | Size: 1196032 | Author: songlj | Hits:

[JSP/JavaJavaAllExpCode

Description: 本人大二学习汇编语言程序设计时的全部源代码,均已经编译通过生成可执行文件,每个目录是一个程序。希望对学习汇编语言的同志有所帮助。-my sophomore year learning assembly language programming at all the source code, have already generated by compiler executable files, each directory is a process. Want to learn assembly language comrades help. -My sophomore year to learn assembly language programming at the time of the full source code, have been compiled by generating an executable file, each directory is a program. Wish to learn assembly language comrades help.-my sophomore year learning assembly language programming at all the source code, have already generated by compiler executable files, each directory is a process. Want to learn assembly language comrades help.
Platform: | Size: 10240 | Author: linda | Hits:

[assembly languageconnapi

Description: Library for the assembly compiler
Platform: | Size: 107520 | Author: Tri | Hits:

[SCMpicRTOS

Description: 精简的pic rtos 汇编代码。 每个任务包括变量定义、初始化程序、中断程序、核心程序。使用编译器MPASM。 对理解rtos、按照rtos思路写pic单片机的小程序很有帮助。-Pic rtos streamlined assembly code. Each mission, including the definition of variables, initialization procedures, interruption of the procedure, the core program. The use of compiler MPASM. Understanding rtos, in accordance with the RTOS ideas SCM pic Writing small programs helpful.
Platform: | Size: 3072 | Author: 张东杰 | Hits:

[Editorcedt370r

Description: Crimson editor for assembly compiler
Platform: | Size: 1217536 | Author: dwi mulyanto | Hits:

[Embeded-SCM Develop6502_1.2.5

Description: 6502汇编语言编译软件! 看看吧!有用的-6502 assembly language compiler software! Take a look at it! Useful
Platform: | Size: 493568 | Author: dengjiankang | Hits:

[OS programC.Compiler

Description: C编译器使用了界面库CJLIB6.0,自己修改了CrystalView的高亮显示方式,仿照emacs,代码生成先使用了PCode,但因为苦于手中没有解释器,编写一个时间不够,所以后来又编写了80x86汇编代码的生成,有一定突破。自我认为整个程序界面比较友好,功能(基于所要求的)也计较完善。-C compiler to use the interface library CJLIB6.0, his revised CrystalView highlighting the way, along the lines of emacs, code generation first use of PCode, but because the interpreter does not suffer from the hands of the preparation of a lack of time, so then prepared a 80x86 assembly code generation, have some breakthrough. Self that the whole program interface more friendly, and function (based on the requirements) are also thought to improve.
Platform: | Size: 906240 | Author: 白大勇 | Hits:

[Develop ToolsAssembly Compiler File MASM615

Description: Masm file for assembly language. easy to use
Platform: | Size: 4336998 | Author: sewir18799 | Hits:
« 12 3 4 5 6 7 8 9 10 ... 14 »

CodeBus www.codebus.net